* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1a2332;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container-fluid {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #1a2332;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-years {
    font-size: 10px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

/* Content */
.content {
    padding: 40px 24px;
    flex: 1;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.signup-text {
    font-size: 15px;
    color: #8b95a5;
    margin-bottom: 32px;
}

.signup-link {
    color: #2e7cf6;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
}

.signup-link:hover {
    text-decoration: underline;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 13px;
    color: #8b95a5;
    margin-bottom: 8px;
    display: block;
}

.form-input {
    width: 100%;
    background: #2a3847;
    border: 1px solid #3a4857;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 15px;
    color: #ffffff;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #2e7cf6;
    background: #2f3d4f;
}

.form-input::placeholder {
    color: #5a6577;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #8b95a5;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.toggle-password:hover {
    color: #ffffff;
}

.forgot-password {
    display: block;
    text-align: left;
    color: #2e7cf6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Login Button */
.login-btn {
    width: 100%;
    background: #2e7cf6;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: auto;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 552px;
    width: calc(100% - 48px);
}

.login-btn:hover {
    background: #1d6fe8;
}

.login-btn:active {
    transform: translateX(-50%) scale(0.98);
}

/* Responsive */
@media (max-width: 576px) {
    .content {
        padding: 32px 20px 100px 20px;
    }

    .page-title {
        font-size: 28px;
    }

    .login-btn {
        max-width: calc(100% - 40px);
        width: calc(100% - 40px);
    }
}