﻿* {
    box-sizing: border-box;
}

.validation-summary-valid {
    display: none !important;
}

.validation-summary li {
    text-align: left;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Roboto", sans-serif;
}

.register-container {
    width: 100%;
    max-width: 400px;
}

.register-box {
    background: #ffffff;
    border-radius: 9px;
    padding: 40px 30px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    text-align: center;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

.register-title {
    font-size: 22px;
    color: #3a3a3a;
    margin-bottom: 6px;
    font-weight: 600;
}

.register-subtitle {
    font-size: 15px;
    color: #808080;
    margin-bottom: 28px;
}

.input-field {
    width: 100%;
    padding: 13px 16px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #cfcfcf;
    margin-bottom: 15px;
    outline: none;
}

    .input-field:focus {
        border-color: #52B069;
        box-shadow: 0 0 0 1px #52B069;
    }

.btn-register {
    width: 100%;
    background: #52B069;
    border: none;
    padding: 13px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-register:hover {
        background: #45A05D;
    }

.icheck-success label {
    font-size: 14px;
    color: #4a4a4a;
    cursor: pointer;
}

.icheck-success input[type="checkbox"] {
    transform: scale(1.15);
    cursor: pointer;
}

.login-link {
    margin-top: 15px;
    font-size: 12px;
}

    .login-link a {
        color: #52B069;
    }
