/* Soft Card */
.soft-card {
    max-width: 400px;
    margin: 60px auto;
    background: rgba(255,255,255,0.85);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
}

/* Input Fields */
.soft-field {
    position: relative;
    margin: 15px 0;
}
.soft-field input {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(240,206,170,0.3);
    border-radius: 8px;
    font-size: 14px;
}
.soft-field label {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 14px;
    color: #8b6655;
    transition: all 0.3s ease;
    pointer-events: none;
}
.soft-field input:focus + label,
.soft-field input:not(:placeholder-shown) + label {
    top: -8px;
    left: 10px;
    font-size: 12px;
    color: #0073aa;
}

/* Buttons */
.comfort-button {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0ceaa, #e0be9c);
    color: #8b6655;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.comfort-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 14px;
    top: 14px;
    cursor: pointer;
    font-size: 16px;
}

/* Social Buttons */
.social-soft {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    background: #f5f3f0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.social-soft:hover {
    background: #f0ceaa;
    transform: translateY(-2px);
}

/* Success Message */
.success-message {
    display: none;
    font-size: 16px;
    color: #8b6655;
    margin-top: 20px;
}
.success-message.show {
    display: block;
}

/* Error Messages */
.error-message {
    font-size: 12px;
    color: #d97757;
    text-align: left;
    margin-top: 5px;
    display: none;
}
.error-message.show {
    display: block;
}