body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    min-height: 100vh;
}

.login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo-wrapper {
    text-align: center;
    margin-bottom: 35px;
}

.main-logo {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.login-form {
    width: 100%;
}

.custom-input {
    height: 52px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

.login-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.login-links a {
    text-decoration: none;
    color: #3154a5;
    font-size: 14px;
}

.login-btn {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #3154a5;
    color: white;
    border: none;
    font-size: 16px;
    margin-bottom: 15px;
}

.login-btn:hover {
    background: #26458c;
    color: white;
}

.signup-btn {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #eef2ff;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
}

.signup-btn:hover {
    background: #dce5ff;
    color: #222;
}

.support-section {
    text-align: center;
    margin-top: 35px;
}

.headline-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 15px;
}

.support-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}