body {
    background-color: #D9E2FF;
    background-image: url('../images/bg_houses.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 500px;
    height: auto;
    margin-bottom: 20px;
}

.register-container {
    background: linear-gradient(135deg, #7ed7de 0%, #5ea0d6 100%);
    width: 770px;
    height: 610px;
    border-radius: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    box-sizing: border-box;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.field {
    width: 85%;
    margin-bottom: 40px;
}

.field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(120, 120, 120, 0.8);
    outline: none;
    padding: 12px 0;
    font-size: 28px;
    color: white;
}

.field input::placeholder {
    color: rgba(255, 255, 255, 0.75);
    font-size: 28px;
}

.login-btn,
.register-btn {
    width: 78%;
    height: 60px;
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 26px;
    margin-top: 28px;
    cursor: pointer;
    transition: 0.2s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-btn {
    background: rgba(255, 255, 255, 0.25);
}

.register-btn {
    width: 78%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
}
.login-btn:hover {
    background: #3c94f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.register-btn:hover {
    background: #1486f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.login-btn:active {
    background: #2f7fd0;
    transform: translateY(1px);
    box-shadow: none;
}

.register-btn:active {
    background: #0f6fcf;
    transform: translateY(1px);
    box-shadow: none;
}

.login-btn:disabled,
.register-btn:disabled {
    background: #8fbce6;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}