* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color:#000939;
    font-family: 'Poppins', sans-serif;
}


html, body {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: start;
    align-items: center;
}


.logo {
    width: 60px;
    margin-bottom: 20px;
}

.website-name p {
    font-size: 1.6rem;
    color: #000939;
    margin-bottom: 30px;
}

.signup-form {
    width: 100%;
    max-width: 400px;
}

.signup-form h2 {
    font-size: 1.4rem;
    color: #000939;
    margin-bottom: 20px;
    font-weight: bold;
}

.input-field {
    width: 100%;
    max-width: 400px;
    padding: 14px;
    margin: 12px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

button#signupButton {
    width: 100%;
    max-width: 400px;
    padding: 14px;
    background-color: #000939;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button#signupButton:hover {
    background-color: #000000;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;

    margin-top: 20px;
    width: 100%;
}

.social-login-buttons button {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    background-color: white;
}

.social-login-buttons button:hover {
    background-color: #f9f9f9;
}

.social-login-buttons img {
    margin-right: 10px; /* Adds space between the image and the text */
    vertical-align: middle; /* Ensures image is vertically aligned with the text */
}


/* New CSS for the close button */
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #000939;
    text-decoration: none;

}

.close-button:hover {
    background-color: #000939;
    color: white;
}

.links{
    display: flex;
    flex-direction: row;

    justify-content: center;
    align-items: center;
    text-align: center;

    gap:20px;
    padding: 14px;
}