@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #004aad, #62bce9);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.container img {
    width: 85px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    max-width: 100%;
}

h2#title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

input:focus {
    border-color: #007BFF;
}

.button-group {
    display: block; 
    width: 100%;
}

button {
    width: 100%; 
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px; 
}

button[type="submit"] {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: white;
}

button[type="submit"]:hover {
    background: linear-gradient(135deg, #0056b3, #004aad);
}

button[type="button"] {
    background-color: #f0f0f0;
    color: #333;
}

button[type="button"]:hover {
    background-color: #d6d6d6;
}


@media (max-width: 480px) {
    .container {
        padding: 20px;
        max-width: 90%;
    }



    h2#title {
        font-size: 20px;
    }

    input {
        font-size: 14px;
        padding: 10px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }

    .container img {
        width: 70px;
        height: 70px;
    }
}
