body {
    font-family: "Inter", sans-serif;
    background: url("../img/white-wave.png"),
        linear-gradient(135deg, #ffccd5, #ff4d4d);
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    z-index: 0;
}

.login-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.register-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.forgot-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.recover-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    color: #333;
    padding: 30px 25px;
    box-sizing: border-box;
}

.card-header .h1 {
    font-weight: 700;
    color: #e63946;
    font-size: 2rem;
}

.form-label {
    font-weight: 600;
    color: #333;
}

/*.form-control {
   border-radius: 10px;
   padding: 10px 14px;
  }

  .form-control:focus {
   box-shadow: none;
   border-color: #e63946;
  }*/

.form-control {
    border-radius: 10px;
    padding: 10px 14px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: inherit;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    /*   border-color: #80bdff;*/
    border-color: #e63946;
    outline: 0;
    box-shadow: inset 0 0 0 transparent;
}

.btn-primary {
    border-radius: 10px;
    font-weight: 600;
    padding: 10px;
    background-color: #e63946;
    border-color: #e63946;
    color: #fff;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c1292e;
    border-color: #c1292e;
}

.toggle-password {
    cursor: pointer;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    z-index: 2;
}

.position-relative {
    position: relative;
}

.text-muted a {
    color: #666;
    transition: color 0.2s ease;
}

.text-muted a:hover {
    color: #444;
}

@media (max-width: 480px) {
    .card {
        padding: 20px 15px;
    }

    .card-header .h1 {
        font-size: 1.5rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 12px 0;
    }
}
