/* registers.css */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('img/GO.gif') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-container {
    width: 100%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.651);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.539);
    padding: 30px 20px;
    backdrop-filter: blur(90%);
}

h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.8em;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
}

.input-group input {
    color: #ffffff;
    width: 95%;
    padding: 10px;
    border: 1px solid #23b00a;
    border-radius: 8px;
    background: #2e2e2e24;
    font-size: 1em;
    transition: all 0.3s ease;
}

.input-group input:focus {
    color: #ffffff;
    border-color: #033606;
    outline: none;
    background: #000000;
    box-shadow: 0 0 5px rgba(102, 187, 106, 0.3);
}

.btn {
    width: 100%;
    padding: 10px;
    background: #228e26;
    color: white;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #58bc34;
}

.signin-link {
    text-align: center;
    margin-top: 15px;
    color: #ffffff;
}

.signin-link a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.signin-link a:hover {
    text-decoration: underline;
}

.alert-success {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.alert-success a {
    color: #58bc34;
    text-decoration: none;
    font-weight: 600;
}

.alert-danger {
    color: #fcfcfc;
    text-decoration: none;
    font-weight: 600;
}

.alert-danger a {
    color: #58bc34;
    text-decoration: none;
    font-weight: 600;
}




