/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #CFAF5D;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Keeps footer at bottom */
    background: linear-gradient(135deg, #CA5B7B, #902BB1, #EA7870, #952EAC, #D2649A);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;
}

/* Smooth Gradient Animation */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Register Container (Crystal Effect) */
.register-container {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent */
    backdrop-filter: blur(10px); /* Crystal effect */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
    align-self: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}
@media (max-width: 400px) {
    .register-container {
        width: 70%; /* Adjusts width to fit smaller screens */
        margin-bottom: 10px;
    }
}

/* Header */
.register-header img {
    width: 100px;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #FFBD3A;
    text-align: center; /* Center the text */
}


/* Input Fields */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #fff;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #CFAF5D;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(5px);
}

.input-group input:focus {
    outline: none;
    border-color: #FFBD3A;
}

/* Register Button */
.register-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #FFBD3A;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.register-button:hover {
    background-color: #E6A800;
    text-decoration: underline;
}

/* Links */
.additional-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

.additional-links a {
    color: #fff;
    text-decoration: none;
    text-decoration: underline;
}

.additional-links a:hover {
    text-decoration: underline;
}

