@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #294460, #E7B245);
    color: #294460;
}

.container {
    margin: 0 15px;
    width: 100%;
}

.form-box {
    width: 100%;
    max-width: 450px;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(41, 68, 96, 0.2);
    margin: 0 auto;
}

h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
    color: #294460;
}

input {
    width: 100%;
    padding: 12px;
    background: #F4F6F8;
    border: 2px solid transparent;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    color: #294460;
    margin-bottom: 20px;
    transition: 0.3s;
}

input:focus {
    border-color: #E7B245;
    background: #FFFFFF;
}

button {
    width: 100%;
    padding: 12px;
    background: #294460;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 20px;
    transition: 0.3s;
}

button:hover {
    background: #E7B245;
    color: #294460;
}

p {
    font-size: 14.5px;
    text-align: center;
    margin-bottom: 10px;
    color: #294460;
}

p a {
    color: #E7B245;
    font-weight: 600;
    text-decoration: none;
}

p a:hover {
    color: #D9533F;
    text-decoration: underline;
}

@media (max-width: 480px) {
    body {
        align-items: flex-start;
        padding: 30px 0;
        min-height: 100vh;
    }
    .form-box {
        padding: 22px;
        border-radius: 10px;
    }
    h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    p {
        font-size: 13.5px;
    }
}

@media (pointer: coarse) {
    input, button {
        min-height: 44px;
    }
}