﻿/* General Styles */
body {
    background-color: #f8f9fd;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/*Login Wrapper*/
.login-wrapper {
    text-align: center;
    background: #fff;
    padding: 3rem; /*Increased padding*/
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    min-height: 400px; /*Set a minimum height; */
    display: flex;
    flex-direction: column;
    justify-content: center; /*Center content vertically */
}

/*Icon Above Login Header */
.icon {
    width: 80px;
    height: 80px;
    background: #316AFD;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon i {
        color: #fff;
        font-size: 30px;
    }

/*Login Container*/
.login-container {
    text-align: left;
}

    .login-container h2 {
        text-align: center;
        margin-top: 10px;
        margin-bottom: 30px;
        color: #333;
        font-weight: 300;
        font-family: sans-serif;
        font-size: xx-large;
    }

/*Form Group*/
.form-group {
    margin-bottom: 1rem;
}

    .form-group input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        box-sizing: border-box;
        font-family: sans-serif;
        color: darkslategray
    }

        .form-group input:focus {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

/* Style for the toggle button */
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666; /* Icon color */
    
}

    .toggle-password i {
        font-size: 14px;
        font-weight: 500;
    }
/*Login Button*/
button {
    width: 100%;
    padding: 0.75rem;
    background-color: #316AFD;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    button:hover {
        background-color: #4A7FFD;
    }
