* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
        
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
        
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
        
.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    width: 400px;
    padding: 40px;
    text-align: center;
    position: relative;
    margin: 20px; /* Adds space on smaller screens */
}
        
.logo {
    width: 80px;
    margin-bottom: 20px;
}
        
h2 {
  font-size: 2rem;
  margin-top: 1rem;
  font-weight: bold;
  color: #073f35;
}

h2 span {
  color: #f3a85d;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}
        
.input-group {
    margin-bottom: 20px;
    text-align: left;
}
        
label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}
        
input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}
        
input:focus {
    border-color: #667eea;
    outline: none;
}
        
.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}
        
.forgot-password a {
    color: #073f35;
    text-decoration: none;
    font-size: 14px;
}
        
.forgot-password a:hover {
    text-decoration: underline;
}
        
button {
    background: linear-gradient(to right, #3f8c7d, #0b5243);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}
        
button:hover {
    opacity: 0.9;
}
        
.signup-link {
    margin-top: 25px;
    color: #666;
}
        
.signup-link a {
    color:#073f35;
    text-decoration: none;
    font-weight: 500;
}
        
.signup-link a:hover {
    text-decoration: underline;
}
