* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #ffffff; /* Light Blue-Grey background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    background-color: #ffffff; 
    width: 100%;
    max-width: 400px;
    height: 100vh;
    /* height: auto;  */
    min-height: 90vh;
    border-radius: 40px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.back-btn {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    color: #007BFF; /* Blue icon */
}

.title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.terms {
    font-size: 13px;
    color: #555;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 16px;
    border-radius: 15px;
    border: 1px solid #D1D9E6;
    background-color: white;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

/* Input focus effect */
.input-group input:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.helper-text {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
}

/* Blue Primary Button */
.connect-btn {
    width: 100%;
    background-color: #007BFF; /* Primary Blue */
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.connect-btn:hover {
    background-color: #0056b3; /* Darker Blue */
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #aaa;
    font-size: 14px;
}

.divider::before, .divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background-color: #ddd;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.social-btn:hover {
    background-color: #f1f1f1;
}

.privacy {
    font-size: 12px;
    color: #777;
    text-align: center;
    margin-top: 25px;
}

.home-indicator {
    width: 120px;
    height: 5px;
    background-color: #333;
    border-radius: 10px;
    margin: 20px auto 0 auto;
}