/* Your custom styles */

body {
    background: linear-gradient(135deg, #3498db, #ffffff);
    margin: 0; /* Reset default body margin */
    padding: 0; /* Reset default body padding */
}

.container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

input {
    display: block;
    width: calc(100% - 20px); /* Adjust width to fit within container */
    margin: 0 auto 20px; /* Center the input fields and add bottom margin */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    display: inline-block;
    width: calc(100% - 20px); /* Adjust width to fit within container */
    padding: 12px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #27ae60;
}

p {
    margin-top: 20px;
    font-size: 16px;
}

#message {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

/* Media query for smaller screens */
@media screen and (max-width: 480px) {
    body {
        background: #3498db; /* Change background color for better display on mobile */
    }

    .container {
        margin: 50px auto; /* Adjust margin for better centering on mobile */
    }
}

/* Your custom styles */

/* Add styles for "or" text */
.or-text {
    margin: 20px 0;
    font-size: 16px;
    color: #333; /* Adjust color as needed */
}

/* Style for "Continue with Google" button */
.google-login {
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.google-login img {
    width: 20px;
    margin-right: 10px;
}

.google-login:hover {
    background-color: #f2f2f2;
}
