﻿body {
    font-family: Arial, sans-serif;
    background-color: #ecf0f3;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.register-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

    .input-group input {
        width: 80%;
        padding: 10px 35px 10px 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        outline: none;
        font-size: 14px;
    }

    .input-group i {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #777;
    }

.terms {
    font-size: 14px;
    margin-bottom: 15px;
}

    .terms a {
        color: #007bff;
        text-decoration: none;
    }

.btn {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 10px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .btn:hover {
        background-color: #0056b3;
    }

.login-link {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

    .login-link a {
        color: #007bff;
        text-decoration: none;
    }
