@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Tomorrow:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tomorrow', sans-serif;
}

body {
    background: url('/images/login.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: rgba(26, 25, 25, 0.9);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(24, 155, 204, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-box h1 {
    font-size: 36px;
    color: #189BCC;
    margin-bottom: 10px;
}

.login-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #189BCC;
    border-radius: 5px;
    outline: none;
    background: #222;
    color: white;
}


/* 🔹 Input Hover Effect */
.login-box input:hover {
    background: rgba(255, 255, 255, 0.1);  /* Slight change when hovering */
    box-shadow: 0 4px 10px rgba(0, 155, 204, 0.3);  
}

.login-button {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    background: #189BCC;
    border: none;
    border-radius: 5px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.login-button:hover {
    background-color: white;
    color: #189BCC;
    transform: scale(1.05);
}

.login-options {
    margin-top: 10px;
}

.login-options a {
    color: #189BCC;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.login-options a:hover {
    text-decoration: underline;
}

.signup-options{
    padding-top: 20px;
}

/* For normal and visited links */
.login-options a, .signup-options a {
    color: #189BCC;
    text-decoration: none;
    font-size: 14px;
}

.login-options a:visited, .signup-options a:visited {
    color: #189BCC;
}

.login-options a:hover, .signup-options a:hover {
    text-decoration: underline;
    color: #69b8ff;
}

/* Specific styles for the Sign Up link */
.signup-link {
    font-size: 18px; /* Make it bigger */
    font-weight: bold; /* Make it bolder */
    margin-left: 2px;
}

.signup-link:hover {
    color: #69b8ff; /* Light blue on hover */
    text-decoration: underline;
}

.hidden { display: none; }
        
/* Eye Icon Styling */
.password-wrapper {
    position: relative;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    color: #189BCC;
}
.toggle-password:hover {
    color: #69b8ff;
}