* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif; 
}

body {
    display: block;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white;
}

.centering {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.wrapper {
    width: 420px;
    background: white; 
    border: 2px solid rgba(0, 0, 0, 0.2); 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    color: black; 
    border-radius: 15px;
    padding: 30px 40px;
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
    color: black; 
}

.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input, select {
    width: 100%;
    height: 100%;
    background: white; 
    border: none;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.2); 
    border-radius: 40px;
    font-size: 16px;
    color: black; 
    padding: 20px 45px 20px 20px;
}

.input-box select {
    padding: 0 45px 0 20px;
}

.input-box input::placeholder {
    color: black; 
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: black; 
}

.wrapper .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.remember-forgot label input {
    accent-color: black; 
    margin-right: 3px;
}

.remember-forgot a {
    color: black; 
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
    color: blue; 
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: #0066cc; 
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.wrapper .btn {
    width: 100%;
    height: 45px;
    background: #0066cc;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.wrapper .btn:hover {
    background-color: #005bb5;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.4);
}

.wrapper .btn:active {
    transform: scale(0.95);
}

.wrapper .register-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a {
    color: black; 
    text-decoration: none;
    font-weight: bold;
}

.register-link p a:hover {
    text-decoration: underline;
    color: blue;
}
.error {
    color: red; 
    text-align: center;
    border: none;
    font-weight: bold;
}
.wrapper h3 {
    font-size: 24px;
    text-align: center;
    color: black;
    margin-bottom: 30px;
}

.registration-input-warning {
    min-height: 12.5px;
    padding: 11.25px 20px 0 20px;
    font-size: 12.5px;
    font-weight: bold;
    white-space: pre-wrap;
    color: red;
}

.registration-message {
    max-width: 420px;
    min-height: 45px;
    padding: 0 14px;
    margin-top: 45px;
    border: 2px solid rgba(0, 0, 0, 0.2); 
    border-radius: 15px;
    position: absolute;
    top: calc(50% + 210px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: lightgray;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    white-space: pre-wrap;
}

.confirm-registration-action {
    width: 420px;
    height: 420px;
    margin: 20px;
    padding: 20px;
    border: 2px solid rgba(0, 0, 0, 0.2); 
    border-radius: 15px;
    background: white; 
    color: black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
