@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary-color: #2b6777;
    --secondary-color: orange;
    --success-color: #3F7D58;
    --blue-color: #205781;
    --danger-color: #F16767;
    --warning-color: #FFF085;
    --info-color: #98D8EF;
  
    /* black */
    --dark_level_0: #202225;
    --dark_level_1: #292b2f;
    --dark_level_2: #40444b;
    --dark_level_3: #40444b;
    --dark_level_4: #40444b;
    --dark_level_5: #636870;
    --dark_level_6: #a5a9af;
    --dark_level_7: #c8cace;
    

    /* grey */
    --grey_level_0: #f5f5f5;
    --grey_level_1: #DBDBDB;
  
    /* white */
    --white_level_0: #f5f5f5;
    --white_level_1: #ffffff;
  
    /* FONTS */
  --font_one: 'Montserrat', sans-serif;
  --font_two: 'Open Sans', sans-serif;
  --font_three: 'Poppins', sans-serif;
  --font_four: 'Roboto', sans-serif;
  
  /* FONT SIZES */
  --font_size_0: 10px;
  --font_size_1: 12px;
  --font_size_2: 14px;
  --font_size_3: 16px;
  --font_size_4: 18px;
  --font_size_5: 20px;
  --font_size_6: 22px;
  --font_size_7: 24px;
  --font_size_8: 26px;
  --font_size_9: 28px;
  --font_size_10: 30px;
  
  /* FONT WEIGHTS */
  --font_weight_0: 100;
  --font_weight_1: 200;
  --font_weight_2: 300;
  --font_weight_3: 400;
  --font_weight_4: 500;
  --font_weight_5: 600;
  --font_weight_6: 700;
  
  }


  * {
    box-sizing: border-box;
    user-select: none; 
}

input, textarea {
    user-select: auto;
}

/* General Page Styling */
body {
    font-family: var(--font_one);
    background-color: white;
    color: var(--dark_level_4);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;

}

/* Login Container */
.login-container {
    background: #ffffff;
    border: 1px solid #ccc;
    border-radius: 0; /* Sharp Edges */
    text-align: center;
    width: 450px;
    padding: 50px 40px 60px 40px;
  
}

.login-container label{
    text-align: start;
}

h2 {
    margin-top: 0;
    padding-top: 0;
    font-weight: bold;
    color: var(--dark_level_5);
}

.error-message {
    color: red;
    margin-bottom: 15px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

/* Input Container (for icons) */
.input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block: 15px;
}

.icon_container{
    margin-right: 9px;
    padding:5.6px;
    display: flex;
    border: 1.9px solid var(--dark_level_7);
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.input-container input {
    padding: 10px;
    border: 1px solid #ccc;
    color:var(--dark_level_5);
    border-radius: 2px;
    outline: none;
    width: 100%;
}

/* Icons */
.input-container .icons {
    width: 25px;
    height: auto;
}

.password_lock, .user{

color: var(--dark_level_6);

}

.password_lock_container{
    position: relative;
}



/* Show Password Icon */
.password_toggle {
    position: absolute;
    right: 10px;
    top: 7px;
    cursor: pointer;
    font-size: 18px;
    color: var(--dark_level_6);
}

/* Add placeholder styling */
input::placeholder {
    color: var(--dark_level_6);
    font-size: 14px;
}

/* Button Styling */
button {
    border:1.9px solid var(--primary-color);
    color: var(--white_level_1);
    padding: 10px;
    background-color: var(--primary-color);
    cursor: pointer;
    margin-top: 20px;
    font-size: 18px;
    font-weight: var(--font_weight_4);
    border-radius: 3px;
}

button:hover{
    background-color: var(--secondary-color);
    border: 1.9px solid var(--secondary-color);
}





/* Forgot Password */
.forgot-password {
    margin-top: 10px;
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;

}

.forgot-password:hover {
    color: var(--secondary-color);
}

/* Floating Action Button (FAB) */
.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background:var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.fab:hover {
    background:var(--secondary-color);
}

/* FAB Menu */
.fab-menu {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    display: none;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.fab-menu p{
text-align: start;
text-wrap: wrap;
}

.fab-menu a {
    display: block;
    color: white;
    text-decoration: underline;
    padding: 5px 0;
}

.fab-menu a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-container {
        width: 90%;
        padding: 20px;
    }

    input {
        font-size: 16px;
    }

    button {
        font-size: 16px;
    }

    .fab {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
