body {
    background: linear-gradient(to right, #6439FF, #7CF5FF);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
}
.logo {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.register-container {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    width: 370px;
    text-align: center;
}

.register-container h2 {
    margin-bottom: 25px;
}

.input {
    border: 1px solid #dbdbdb;
    background-color: #fafafa;
    border-radius: 4px;
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.input:focus {
    border-color: #a8a8a8;
    outline: none;
}

#register-btn {
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: none;
    background-color: #0095f6;
    color: white;
    font-weight: bold;
    margin-top: 10px;
    cursor: pointer;
}

#register-btn:hover {
    background-color: #007bbf;
}

.btn2 {
    margin-top: 20px;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.btn2 a {
    text-decoration: none;
    color: #0095f6;
}

.btn2 a:hover {
    text-decoration: underline;
}
.input-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

#password,
#password_confirm,#telephone {
    width: 100%;
    padding-right: 40px; /* Space for the eye icon */
    box-sizing: border-box;
}

.eye{
    width: 32px;
    height: 32px;
    position: absolute;
    right: 10px;
    top: 40%;
    transform: translateY(-50%);
    cursor: pointer;
}
