* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: #f7d7cb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    width: 200px;
}

.login-wrapperr {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-card {
    background: #fff;
    width: 440px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.login-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    height: 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding-left: 10px;
}

.form-control:focus {
    border-color: #d45013;
    outline: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.forgot-link {
    font-size: 14px;
    color: #d45013;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    background: #d45013;
    border: none;
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

/* Mobile */
@media (max-width: 480px) {
    .login-card {
        width: 78%;
        padding: 18px;
    }

    .login-logo img {
        width: 150px;
    }
}

.login-container{
    font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #ff512f, #f09819);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
