html, body {
    height: 100%; /* Full viewport height */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(150deg, #ffc632, #ffffff);
    overflow: hidden; /* Prevent unwanted scrolling */
    box-sizing: border-box;
    position: relative; /* Enable positioning for pseudo-elements */
}

/* Add round design with ::before */
body::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.4); /* Semi-transparent white */
    border-radius: 50%; /* Make it round */
    z-index: -1; /* Place behind the content */
}

/* Add zig-zag design with ::after */
body::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 300px;
    height: 50px;
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.6) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: -1; /* Place behind the content */
    transform: rotate(-15deg); /* Add some tilt to the zig-zag */
}

.container {
    background: #fff;
    max-width: 400px;
    border-radius: 15px;
    padding:40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.header h1 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.header p {
    font-size: 14px;
    color: #666;
}

.form {
    margin-top: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: auto%;
    padding: 6px 33px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: auto;
}

.input-group .icon {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 19px;
    color: #aaa;
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #ff5722;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    background: #ff5722;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 0;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.btn span {
    font-size: 14px;
}

.btn:hover {
    background: #e64a19;
}

.footer {
    margin-top: 20px;
}

.footer p {
    font-size: 14px;
    color: #666;
}

.footer a {
    color: #ff5722;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 30%;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.social.fb {
    background-color: #3b5998; /* Facebook blue */
}

.social.twitter {
    background-color: #1da1f2; /* Twitter blue */
}

.social.google {
    background-color: #db4437; /* Google red */
}

.social-icons a:hover {
    filter: brightness(1.2);
}

.alert-danger {
    background-color: #f8d7da;  /* Light red background */
    color: #721c24;  /* Dark text color */
    border: 1px solid #f5c6cb;  /* Light red border */
}