﻿body {
    font-family: Arial, sans-serif;
    background-color: #FBF9E4;
}

img {
    width: 170px;
    height: 170px;
}

.login-logo {
    display: block;
    margin: 0 auto -85px;
    position: relative;
    z-index: 10;
    width: 170px;
    height: 170px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

/* sign up form */
.signup-form {
    max-width: 400px;
    margin: 30px auto;
    margin-top: 110px;
    padding: 20px 30px 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(70, 39, 32, 0.2);
}

    .signup-form h3 {
        text-align: center;
        color: #122C4F;
        margin-top: 5px;
        margin-bottom: 20px;
        font-size: 28px;
        padding-top: 5px;
    }

    .signup-form p {
        margin: 15px 0;
    }


    /* text box */
    .signup-form input[type="text"],
    .signup-form input[type="password"],
    .aspNet-TextBox {
        width: 100%;
        padding: 10px;
        font-size: 15px;
        border-radius: 6px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        background-color: #fffef8;
        margin-bottom: 15px;
    }

        .signup-form input[type="text"]::placeholder,
        .signup-form input[type="password"]::placeholder {
            color: #999999;
        }

/* button */
.aspNet-Button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #122C4F, #C8D9E6); /* midnight blue to sky blue */
    color: #fffef6;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(200, 217, 230, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

    .aspNet-Button:hover {
        transform: scale(1.05);
        background: linear-gradient(135deg, #C8D9E6, #122C4F); /* reverse gradient */
        box-shadow: 0 6px 14px rgba(200, 217, 230, 1);
    }

/* social */
.social-login {
    text-align: center;
    margin-top: 20px;
}

.divider {
    color: #122C4F;
    position: relative;
    margin: 20px 0;
    text-align: center;
}

    .divider span {
        background: #FBF9E4;
        color: #122C4F;
        padding: 0 10px;
        position: relative;
        z-index: 1;
    }

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 10%;
        width: 80%;
        height: 1px;
        background: #ccc;
        z-index: 0;
    }

/* social icon */
.social-icons a {
    display: inline-block;
    margin: 0 10px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    line-height: 48px; /* Center icon vertically */
    color: white;
    transition: background-color 0.3s ease;
}

    .social-icons a.google {
        background-color: #db4437;
    }

    .social-icons a.facebook {
        background-color: #3b5998;
    }

    .social-icons a.apple {
        background-color: #000000;
    }

    .social-icons a:hover {
        opacity: 0.8;
    }


/*login*/
.login-prompt {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #462720;
}

    .login-prompt a {
        color: #122C4F; /* midnight blue */
        font-weight: bold;
        text-decoration: none;
        margin-left: 5px;
        transition: color 0.3s ease;
    }

        .login-prompt a:hover {
            color: #C8D9E6; /* sky blue */
            text-decoration: underline;
        }
