body {
    background-color: #f7f9fc;
    font-family: 'Arial', sans-serif;
}

.register-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.register-form-1 {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.register-form-1 h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    border-radius: 50px;
    padding: 10px 20px;
    padding-left: 45px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

.btn-primary {
    background: #007bff;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
}

.form-text {
    color: #999;
    margin-left: 50px;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: #007bff;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.fade-out {
    opacity: 0;
    transition: opacity 2s ease-out;
}