body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', Arial, sans-serif;
    background: #f5f5f5;
    line-height: 1.6;
}

.header {
    background: #000;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
}

.header-content {
    max-width: 1200px;
    width: 100%;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.logo {
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}

.form-container {
    max-width: 400px;
    margin: 30px auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.input-group {
    margin: 20px 0;
    position: relative;
}

input {
    width: 100%;
    padding: 14px 50px 14px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

input:focus {
    border-color: #5a64b4;
    box-shadow: 0 0 8px rgba(90,100,180,0.15);
    outline: none;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 2;
}

.password-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #4A5568;
    transition: all 0.3s ease;
}

.password-toggle:hover svg {
    stroke: #2D3748;
}

input[type="submit"] {
    background: #343434;
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    margin-top: 25px;
}

input[type="submit"]:hover {
    background: #5a64b4;
    transform: translateY(-2px);
}

.error-message {
    color: #dc3545;
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    min-height: 20px;
}

.contact-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.contact-section a {
    color: #5a64b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #343434;
}

@media (max-width: 480px) {
    .logo {
        max-width: 180px;
    }
    .form-container {
        padding: 25px;
        margin: 20px 15px;
    }
    input {
        padding: 12px 45px 12px 12px;
        font-size: 15px;
    }
}
