/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Body Styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../Assets/lr.png') no-repeat center center/cover;
}

/* Registration Form Wrapper */
.wrapper {
    width: 800px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 30px 40px;
    color: #fff;
    backdrop-filter: blur(10px);
}

/* Form Heading */
.wrapper h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

/* Input Rows */
.input-row {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.input-box {
    flex: 1;
    position: relative;
}

/* Input Fields */
.input-box input {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 15px 45px 15px 20px;
}

/* Placeholder Styling */
.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Icon Styling */
.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Submit Button */
.btn {
    width: 100%;
    height: 45px;
    background: orangered;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #ff4500;
    transform: scale(1.05);
}

/* Login Link */
.login-link {
    text-align: center;
    font-size: 14.5px;
    margin-top: 20px;
}

.login-link a {
    color: #ff9f1c;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}