@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-image: url('path/to/your/image.jpg');
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.container {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    width: 400px;
}

.login-form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.input-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.input-box input {
    width: 100%;
    padding: 10px 35px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: 0.3s;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
    top: -10px;
    font-size: 12px;
    color: #66ccff;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.options a {
    text-decoration: none;
    color: #0084c6;
    transition: 0.3s;
}

.options a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    padding: 10px;
    background: #66ccff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #3399cc;
}

.register-link {
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.register-link a {
    color: #66ccff;
    text-decoration: none;
    transition: 0.3s;
}

.register-link a:hover {
    text-decoration: underline;
}

/* Register */

.register-form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.login-link {
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.login-link a {
    color: #66ccff;
    text-decoration: none;
    transition: 0.3s;
}

.login-link a:hover {
    text-decoration: underline;
}

.input-box select {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    height: 40px;
    padding: 0 35px 0 5px;
    font-size: 16px;
    color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.input-box select option {
    background: #333;
    color: #fff;
}