﻿*{
    padding:0px;
    margin:0px;
    box-sizing:border-box;
}

body {
    min-height: 100vh;
    width: 100%;
    background-image: url("../img/back.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Rubik", sans-serif;
}

.main {
    display: flex;
    min-height: 100vh;
    width: 100%;
    justify-content:center;
    align-items:center;
}

.regArea {
    border-radius: 25px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 5px 5px 4px 1px rgba(0,0,0,0.26);
}

.btn-custom{
    background-color:#75067b;
    color:#fff;
    border:1px solid #ccc;
    border-radius:10px;
    padding:10px 20px;
}

.btn-custom:hover {
    background-color: #8c0793;
    color: #fff;
   
}