body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.registration-form {
    width: 380px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background-color: #ffffff;
}

.form-title {
    margin: 15px 0;
    font-size: 1em;
    font-weight: 700;
    color: #28a745;
}

.icon {
    width: 60px;
    height: 60px;
    margin: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
}

.form-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
}

.create-btn {
    background-color: #007bff;
    width: 100%;
    padding: 10px;
    font-weight: 600;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.95em;
}

.create-btn:hover {
    background-color: #218838;
}

.link {
    text-decoration: none;
    color: #007bff;
}

.link:hover {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.toast-body {
    padding: 5px;
    color: white;
}

.password-strength {
    margin-top: 5px;
}


.password-container {
    position: relative;
    width: 100%;
    display: flex;
}

.password-container input.form-control {
    width: 90%;
}

.toggle-password {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.toggle-password:focus {
    outline: none;
}