body {
    background: linear-gradient(to right, #9C1030, #2E0330);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.title {
    color: black;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    color: #9C1030;
    font-size: 14px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid lightgray;
    outline: none;
    font-size: 16px;
    background: transparent;
}

.check-icon {
    position: absolute;
    right: 10px;
    top: 35px;
    color: green;
    font-size: 16px;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 35px;
    cursor: pointer;
    font-size: 16px;
}

.btn-signup {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to right, #9C1030, #2E0330);
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-signup:hover {
    background: linear-gradient(to right, #7C0E20, #1E0120);
}

.signin-text {
    margin-top: 15px;
    font-size: 14px;
    color: black;
}

.signin-text a {
    font-weight: bold;
    text-decoration: none;
    color: #9C1030;
}
