* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('HERO_LOGIN25_final.jpg');
    background-size: cover;
    background-position: 20% 50%;
    min-height: 100vh;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    body {
        background-position: 10% 50%;
    }
    
    .header {
        padding: 15px 20px;
    }

    .header img {
        width: 140px;
        height: 44px;
    }

    .loading-box {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    body {
        background-position: 5% 50%;
    }
    
    .header img {
        width: 120px;
        height: 37px;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    width: 100vw;
    padding: 15px 40px 35px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .header img {
        width: 140px;
        height: 44px;
    }
}

.container {
    width: 100%;
    padding: 0;
}

@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px 35px 20px;
    }
    
    .logo img {
        width: 140px;
        height: 44px;
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 12px 15px 32px 15px;
    }
    
    .logo img {
        width: 120px;
        height: 37px;
    }
}

.logo img {
    width: 170px;
    height: 53px;
    object-fit: contain;
}

.language-selector select {
    padding: 5px 10px;
    border: none;
    background: transparent;
    color: #333;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
}

.language-selector select option {
    background: white;
    color: #333;
    font-weight: 700;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    position: relative;
    padding: 0 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.login-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    z-index: 2;
}

.login-box h2 {
    color: #333;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
}

.info-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #0072CE;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border: 1px solid #0072CE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-size: 12px;
}

.tooltip {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    width: 300px;
    top: -5px;
    right: 35px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    z-index: 1000;
}

.tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 15px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    transform: rotate(-45deg);
}

.info-icon:hover + .tooltip {
    display: block;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #0072CE;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}

.login-btn:hover {
    background: #005ba3;
}

.forgot-credentials {
    text-align: left;
    margin-top: 15px;
}

.forgot-credentials a {
    color: #0072CE;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    padding-left: 2px;
}

.forgot-credentials a:hover {
    color: #005ba3;
    text-decoration: underline;
}

.forgot-credentials-top {
    padding: 0 40px;
    margin-top: -30px;
    margin-bottom: 20px;
}

.forgot-credentials-top a {
    color: #0072CE;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.forgot-credentials-top a:hover {
    color: #005ba3;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .forgot-credentials-top {
        padding: 0 20px;
        margin-top: -20px;
    }
}

.signup-link {
    margin-top: 30px;
    text-align: center;
}

.signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0072CE;
    text-decoration: none;
    font-weight: bold;
}

.banner-text {
    color: white;
    max-width: 500px;
    text-align: center;
    position: absolute;
    right: 50px;
    text-align: right;
}

.banner-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-text h2 {
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
} 

.inner {
    text-align: center;
    margin-top: 40px;
    color: white;
    max-width: 400px;
    padding: 0 20px;
}

.inner h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.inner span {
    display: block;
    margin-top: 25px;
}

.button.blue {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0072CE;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    cursor: pointer;
}

.button.blue:hover {
    background-color: #005ba3;
}

@media screen and (max-width: 768px) {
    .login-box, .inner {
        width: 100%;
        max-width: 400px;
    }
    
    .inner {
        margin-top: 30px;
    }
    
    .inner h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .inner h2 {
        font-size: 31px;
    }
} 

.success-message {
    text-align: center;
    padding: 30px;
}

.success-message h2 {
    color: #28a745;
    margin-bottom: 15px;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0072CE;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.small {
    font-size: 14px;
    color: #666;
} 