body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

form {
    margin-bottom: 20px;
}

.input-container {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    background-color: #f9f9f9;
}

.input-wrapper .icon {
    color: #13AFAB;
    margin-right: 10px;
    font-size: 18px;
}

input[type="text"], input[type="password"] {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    background-color: transparent;
}

input[type="submit"] {
    background-color: #13AFAB;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #0e8d89;
}

.register-link {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.register-link a {
    color: #13AFAB;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}
